home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_quake / server1.zip / _VOTE.QH < prev    next >
Text File  |  1996-08-31  |  2KB  |  51 lines

  1. /*
  2. **
  3. ** _vote.qh (Vote Header, 1.1)
  4. **
  5. ** Copyright (C) 1996 Johannes Plass
  6. ** 
  7. ** This program is free software; you can redistribute it and/or modify
  8. ** it under the terms of the GNU General Public License as published by
  9. ** the Free Software Foundation; either version 2 of the License, or
  10. ** (at your option) any later version.
  11. ** 
  12. ** This program is distributed in the hope that it will be useful,
  13. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ** GNU General Public License for more details.
  16. **
  17. ** You should have received a copy of the GNU General Public License
  18. ** along with this program; if not, write to the Free Software
  19. ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. ** 
  21. ** Author:   Johannes Plass (plass@dipmza.physik.uni-mainz.de)
  22. **
  23. */
  24.  
  25.  
  26. float            vote_checktime;
  27. float            vote_voters; // number of players entitled to vote
  28.  
  29. void(entity player)    VoteInfo;
  30. void(entity player)    VoteInit;
  31. void(entity player)    VoteHelp;
  32. void(entity player)    VoteShowVotes;
  33. float()            VoteThink;
  34. void()            VoteCheckVotes;
  35.  
  36. .float            vote_exit;
  37. float                   VOTE_EXIT_ENABLED  = 1;
  38. float                   VOTE_EXIT_DISABLED = 2;
  39. float            vote_pro_exit;
  40. float            vote_exit_status;
  41. void(entity player)    VoteExitHelp;
  42. void(entity player)    VoteExitVote;
  43. void()            VoteExitExit;
  44.  
  45. .float            vote_exitrules;        //#jp#(ExitRules)
  46. float            vote_pro_exitrules;    //#jp#(ExitRules)
  47. void(entity player)    VoteExitRulesHelp;    //#jp#(ExitRules)
  48. void(entity player)     VoteExitRulesVote;    //#jp#(ExitRules)
  49. void()             VoteExitRulesDisable;    //#jp#(ExitRules)
  50.  
  51.